iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 17
4

倘若不斷向深處扎根,就能茁壯成長 - RM

Position 定位

平時我們在使用 position 時可能是在使用 position: absolute ,需要對某個元素去做出特別的定位時、或是只需要讓元素稍作偏移但不脫離流而使用 position: relative 時,今天我們要談到 position 的四種屬性值:staticrelativeabsolutefixed,還記得我們昨天提到的在 CSS 中的三種定位方式嗎?CSS 中主要存在三種定位方式,以 position 來說不同的屬性值主要分成了 Normal flow 狀態下的 staticrelative 以及屬於絕對定位類別的 absolutefixed 兩種。

position
https://ithelp.ithome.com.tw/upload/images/20191002/20111825DhTH3vVL4I.png

Position 定位設置

規範直通車:
Visual formatting model

top、left、right、bottom
https://ithelp.ithome.com.tw/upload/images/20191002/20111825Vn0JIBTqu1.png

  1. length: 可以設定數值距離,也可以設定負值。
  2. %:相對於 containing block 的寬、高,也可以設定負值。
  3. auto:預設數值。

上面是規範中的 position 我們可以看見一般元素的初始值都是 static,也就是未脫離 Normal flow,屬於 Normal flow 狀態,好比我們今天直接設置了一個 <div><nav> 在預設情況下都是 static,由於兩個元素都是 display: block 所以會按照 Normal flow 中的 BFC 去進行定位佈局。

Normal Flow - static、relative

  1. position: static:預設狀態,位於 Normal flow 中,例如說我們一般在設置 <a><div><p> 等元素都是屬於 position: static,會按照 Normal flow 方式去定位佈局。

規範定義:
Once a box has been laid out according to the normal flow or floated, it may be shifted relative to this position. This is called relative positioning.

  1. position: relative:box 會相對於它本來位於 Normal Flow 的位置去移動,並且不會影響其他元素,相當於實體位置沒有偏移一樣,不過當設置 position: relative 時,此時可能涉及到堆疊。
    • 相對定位假如超出包含塊,則設置 overflow: auto | scroll 狀態會形成滾動條去處理。
    • 此時元素會相對本來的位置去進行偏移,並且在部分情況下會產生重疊的現象。
    • left | right | top | bottom :預設 auto 時,使用的數值是 0。
    • left > right;top > bottom,設置時左右一組、上下一組,若是同時設置便是 over-constrained,其中一方被忽視,而其中左大於右、上大於下。
    • left= -right,當 left: auto 且 right 有設置時,使用的 left 值是將 right 值減去,反之亦然。

以上的規則拿例子來說,我們可以看下列三種規則等效。

div.a8 { position: relative; direction: ltr; left: -1em; right: auto }
div.a8 { position: relative; direction: ltr; left: auto; right: 1em }
div.a8 { position: relative; direction: ltr; left: -1em; right: 5em } /*這三條規則等效*/
當兩者屬性值相互衝突時的狀態

左右設置相牴觸時,左大於右。

.container{
  width: 270px;
  height: 270px;
  background-color: #cfcfcf;
  overflow: scroll;
  padding: 10px;
}
.item{
  text-align: center;
  width: 100px;
  height: 100px;
  background-color: #dfdfdf;
  outline: 2px dashed ;
  margin-bottom: 10px;
  color: #4e4e4e;
}
.item::before{
  content:'';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.item:nth-of-type(3){
  position: relative;
  top: 400px;
}


我們可以看見在上下左右都設置 10px 的狀態下,實際上是 10px 狀態的只有上、左,這是因為在同時設置衝突時,left > right;top > bottom 的緣故。

當相對定位超出包含塊的狀態
.container{
  width: 300px;
  height: 300px;
  background-color: #cfcfcf;
/*   overflow: auto; */
  overflow: scroll;
}
.item{
  width: 100px;
  height: 100px;
  background-color: #4e4e4e;
}
.item:first-of-type{
  position: relative;
  top: 400px;
}

此時假如對包含塊設定 overflow: scroll、auto 的話,超出的元素會以滾動條處理(如下),在這個時候 container 因為 overflow 不是 overflow: visible 所以對內新生成了一個 BFC ,此時的 container 與內部 div 不會產生所謂的 margin-collpase,除此之外一般的狀態下預設值為 overflow: visible 所以元素會直接超出包含塊區域,不會受到剪裁或遮罩、滑動處理。

非 Normal Flow - absolute、fixed

規範定義:
In the absolute positioning model, a box is explicitly offset with respect to its containing block. It is removed from the normal flow entirely (it has no impact on later siblings).

  1. position: absolute:相對於屬性值 position: static以外的最近祖先 containing block 去進行偏移,對於之後的元素定位沒有影響,本身新建了 BFC,因此不會產生 margin collapse。
    • 此時由於脫離 BFC,position: absolute 本身有自己的 box 大小算法,寬要再進行設定不會自動佔滿包含塊(position: absolute 寬高 box 算法之後會提及)。
    • position: absolute 包含塊為最近祖先非 position: static 元素。
    • 在沒有設置 top、left、right、bottom 時,數值會是 auto 會保持在原位,要進行數值設定才會定位。

規範定義:
Fixed positioning is a subcategory of absolute positioning. The only difference is that for a fixed positioned box, the containing block is established by the viewport.

  1. position: fixed 本身的定位跟 position: absolute 很相似,明顯不同地方是包含塊是 viewport ,設置了 position: fixed 定位偏移基準都是 viewport。

對於各種 media type ,諸如列印、螢幕等等, position: fixed 會相對於某個視口去做移動,若是希望在列印和螢幕時有不同的效果,可以透過 media rule 去設定。

sticky

position: sticky 支援度不高,在此暫時不討論,規範寫到它較為接近於 position: relative 的定位方式,詳情見 CSS position level 3
https://ithelp.ithome.com.tw/upload/images/20191002/20111825MektBSGems.png


參考資料:

Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification
CSS Positioned Layout Module Level 3
CSS Display Module Level 3


以上的部分有任何錯誤的地方,歡迎指正呦~非常感謝~~XD


上一篇
Visual Formatting Model - 三種定位
下一篇
話說 Float 是什麼?
系列文
每天來點 CSS Specification30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言